home *** CD-ROM | disk | FTP | other *** search
- #ifndef FORMSX
- #define FORMSX
-
- #define FLX_INPUTLEN 256
-
- #include <stdarg.h>
-
- void flx_set_input_printf(FL_OBJECT *obj, char *format, ...);
- void flx_set_input_float(FL_OBJECT *obj, float f);
- void flx_set_input_int(FL_OBJECT *obj, int i);
-
- float flx_get_input_float(FL_OBJECT *obj);
- int flx_get_input_int(FL_OBJECT *obj);
-
- void flx_enable(FL_OBJECT *obj, int lcol);
- void flx_disable(FL_OBJECT *obj, int lcol);
-
- FL_OBJECT *flx_findobject(FL_FORM *form, char *label);
-
- #endif /* FORMSX */
-